home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 70436 / 70436.xpi / chrome / auron.jar / content / common.js < prev    next >
Text File  |  2010-01-07  |  1KB  |  43 lines

  1. /**************************************************************
  2. * This JavaScript function's second argument is                  *
  3. * Loaded in the same tab if activated with the left           *
  4. * Mouse or loaded in a new tab when activated                 *
  5. * The middle button of the same.                              *
  6. **************************************************************/
  7.  
  8. /*** No windows have been popped up yet ***/
  9. var currOpened = 0;
  10.  
  11. function auron_open(event, url)
  12. {
  13.     /*** If button Event ***/
  14.     if (event && event.button != 0)
  15.     {
  16.         /*** Open in a tab (disabled) ***/
  17.         //getBrowser().addTab(url);
  18.         
  19.         /*** do nothing more ***/
  20.     }
  21.     else 
  22.     {
  23.         /*** if Window is already opened ***/
  24.         if (currOpened > 0)
  25.         {
  26.             /*** close opened window ***/
  27.             newWin.close();
  28.             /*** reset the counter ***/
  29.             currOpened = 0;
  30.         }
  31.         
  32.         /*** open in the same browser window (disabled) ***/
  33.         //loadURI(url);
  34.         
  35.         /*** Pop up in a new window 500x570 no scrolling, no address bar ***/
  36.         newWin = window.open(url,'_gadget1','location=0,status=0,scrollbars=0,width=500,height=570');
  37.         /*** increase the counter ***/
  38.         currOpened++;
  39.         /*** Focus new window ***/
  40.         newWin.focus();
  41.     }
  42. }
  43.